昨天已經有完成了在本地端新增了專案資料夾,於是我們開始新增 index.html 讓我們的首頁出生吧。
1.開啟 Git Bash 並且切換到你的專案資料夾中 (指令是 cd
)
2.新增首頁 touch index.html
首頁就會出現在你的專案資料夾中啦
3.在 Git Bash 中 輸入 git status
即可發現未追蹤的資料
4.在 Git Bash 中 輸入 add 你的檔名
or add .
前者是單一資料加入追蹤 後者是 全部加入追蹤記得要加入空格喔
5.git commit -m
"輸入你的描述 像是新增甚麼拉 或是 更新那些物品" *分號記得加入
6.打開 GitHub 點選個人頭貼旁邊的 + 後 按下 new repository
7.為你的 專案取個名子,描述可以不填寫,接著按下 Create repository
8.由於我們是在本地端已經有了專案資料夾,因此我們選擇 push an existing repository from the command line 那一行中的指令
9.推上去後應該就可以看到 index.html 在你的 Git Hub 上了